home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / TEMP / GNU / bison / Introducti < prev    next >
Text File  |  1995-06-28  |  1KB  |  26 lines

  1. Introduction
  2. Previous: <Top=>!Root> * Next: <Conditions=>Conditions> * Up: <Top=>!Root>
  3.  
  4. #Wrap on
  5. {fH2}Introduction{f}
  6.  
  7. {fUnderline}Bison{f} is a general-purpose parser generator that converts a
  8. grammar description for an LALR(1) context-free grammar into a C
  9. program to parse that grammar.  Once you are proficient with Bison,
  10. you may use it to develop a wide range of language parsers, from those
  11. used in simple desk calculators to complex programming languages.
  12.  
  13. Bison is upward compatible with Yacc: all properly-written Yacc grammars
  14. ought to work with Bison with no change.  Anyone familiar with Yacc
  15. should be able to use Bison with little trouble.  You need to be fluent in
  16. C programming in order to use Bison or to understand this manual.
  17.  
  18. We begin with tutorial chapters that explain the basic concepts of using
  19. Bison and show three explained examples, each building on the last.  If you
  20. don't know Bison or Yacc, start by reading these chapters.  Reference
  21. chapters follow which describe specific aspects of Bison in detail.
  22.  
  23. Bison was written primarily by Robert Corbett; Richard Stallman made
  24. it Yacc-compatible.  This edition corresponds to version 1.24 of Bison.
  25.  
  26.